home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / share / doc / libmldbm-perl / README < prev   
Text File  |  2002-07-08  |  2KB  |  68 lines

  1. This is the README file for MLDBM, the Perl module that can 
  2. be used to store multidimensional hash structures in tied hashes
  3. (including DBM files).
  4.  
  5. This is version 2.00.  It requires:
  6.    Perl Version 5.004 or later.
  7.    The Data::Dumper package from CPAN, version 2.08 or later.
  8.  
  9. If you were able to install Data::Dumper with its XSUB extension, MLDBM
  10. will perform significantly faster.
  11.  
  12. Optionally, you can also switch to other serializing packages such as
  13. FreezeThaw and Storable.  Storable provides much greater speeds, and the
  14. performance of FreezeThaw is comparable to Data::Dumper.  Support for
  15. this was added by Raphael Manfredi.  Many thanks!
  16.  
  17. See the embedded documentation in the module for more details.
  18.  
  19. As always, feedback is very welcome.
  20.  
  21.  - Sarathy.
  22.    gsar@umich.edu
  23.  
  24. ----------------------------------------------------------------------
  25. INSTALLATION
  26.  
  27. You must install the Data::Dumper package first.  Optionally, you
  28. may want to install one or more of Storable and FreezeThaw as well.
  29. (Storable-0.5@8 and FreezeThaw-0.3 have been tested, earlier versions
  30. may not work.)
  31.  
  32. From the MLDBM source directory:
  33.  
  34.    perl Makefile.PL
  35.    make test
  36.    make install
  37.  
  38. is all that will be needed.
  39.  
  40. ----------------------------------------------------------------------
  41. CHANGES
  42.  
  43.     2.01  (07 July 2002)
  44.         Fixed t/*.t tests to work under perl 5.8.0 RC2
  45.         The core of MLDBM was working, the tests were fixed.
  46.         (courtesy of Josh Chamas)
  47.  
  48.     2.00  (10 May 1998)
  49.             Added support for multiple serializing interfaces.
  50.             (courtesy Raphael Manfredi
  51.             <Raphael_Manfredi@grenoble.hp.com>)
  52.  
  53.             Split serializer wrappers into multiple files, and
  54.             regularized the interface some.  Underlying TIEHASH
  55.             object and serializer can now be set at runtime
  56.             (with care).
  57.  
  58.             Miscellaneous pod tweaks.
  59.  
  60.     1.25  (7 December 1997)
  61.  
  62.             Add RemoveTaint flag.
  63.  
  64.             require 5.004.
  65.  
  66.             require Data::Dumper 2.08.
  67.  
  68.